home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / eckelt01.zip / 6 / MAKEFILE.MS < prev    next >
Text File  |  1994-10-24  |  288b  |  22 lines

  1. # Makefile for Microsoft Visual C++ 2.0
  2. # Tested on Windows NT 3.5
  3. CPP = cl
  4.  
  5. .c.exe:
  6.   $(CPP) $<
  7.  
  8. .cpp.exe:
  9.   $(CPP) $<
  10.   
  11. .cpp.obj:
  12.   $(CPP) -c $*.cpp
  13.  
  14.   $(CPP) $**
  15. all: SAFECONS.exe \
  16. CONSTAG.exe \
  17. CONSTVAL.exe \
  18. CONSTP.exe \
  19. SSTACK.exe \
  20. QUOTER.exe \
  21. VOLATILE.exe
  22.